home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / megabyte.arc / HRAMDISK.DOC < prev    next >
Text File  |  1987-12-11  |  2KB  |  45 lines

  1.  
  2.         
  3.         HRAMDISK.SYS is a RAM disk that loads into segments D and E, 
  4.     between the video buffers and the system ROM.  It was the basis for 
  5.     the PC  Magazine POWER USER column in the summer of 1985.
  6.         
  7.         If you are using my EZDOS program, HRAMDISK.SYS already has the 
  8.     DTEST code loaded.  This means that you can monitor disk activity 
  9.     across system warm boots.  Also, this means that the contents of 
  10.     the RAM disk are preserved when the system is rebooted.  
  11.         
  12.         HRAMDISK will initialize system memory if you have memory installed 
  13.     beyond the mother board switch settings.  In the CONFIG.SYS file, you 
  14.     need to add a parameter telling HRAMDISK how much memory to initialize 
  15.     (the real top of RAM).  No reboot will be done, so you need to use my 
  16.     LRAMDISK program to do that.  This will give you two non-volatile RAM 
  17.     disks for the price of one.
  18.         
  19.         LRAMDISK.SYS will do the system reboot after it installs itself 
  20.    above the BIOS top of memory pointer.  With these RAM disk programs, 
  21.    plus EZDOS, you have abbreviated commands, disk statistics that continue 
  22.    across system warm starts, and RAM disks that preserve their contents 
  23.    across system warm starts.
  24.  
  25.         HRAMDISK is installed with a line in the CONFIG.SYS file that 
  26.    includes the driver name and the amount of system memory installed below 
  27.    the display buffer.  It should only be used in systems with memory 
  28.    installed in segments D and E.  The result is a 127K RAM disk and the 
  29.    EZDOS DTEST code.  
  30.  
  31.         LRAMDISK is installed with a line in the CONFIG.SYS file that 
  32.    contains its name, followed by parameters for the disk size, cluster 
  33.    size, number of directory entries, and amount of system memory below the 
  34.    display adapters.
  35.  
  36.         My CONFIG.SYS looks like this:
  37.  
  38.          DEVICE=HRAMDISK.SYS 704
  39.          DEVICE=LRAMDISK 128 128 32 704
  40.  
  41.         This gives me drive D: in high memory with 127K and drive E: with 
  42.    128K above the DOS area, which extends to 704K on my system.
  43.  
  44.  
  45.